Skip to content

Instantly share code, notes, and snippets.

@harrdou
harrdou / NotMigrated.ps1
Last active September 3, 2026 13:08
A script to report on those mobile users who have not yet migrated to EMDM-Cloud
# A script to report on those mobile users who have not yet
# migrated to EMDM-Cloud
# Select the input data file
Add-Type -AssemblyName System.Windows.Forms
$FileBrowser = New-Object System.Windows.Forms.OpenFileDialog -Property @{
Filter = 'CSV (Comma delimited) (*.csv)|*.csv'
Title = 'Open CSV file' }
$null = $FileBrowser.ShowDialog()
@mnixry
mnixry / AGENTS.md
Last active September 3, 2026 13:07

Agent Guidelines

1. Authorization

DO

  • DO STAY WITHIN THE USER'S AUTHORIZATION.
  • Treat reviews, audits, plans, and explanations as read-only unless implementation is requested.
  • Ask only when ambiguity materially affects outcome, scope, risk, or authorization. Otherwise make a reasonable assumption and proceed.
@cvan
cvan / set-up-chromium-keys.md
Last active September 3, 2026 13:05
Launch Chromium with API Keys on Mac OS X and Windows

Last Updated: March 2023

IMPORTANT: Ignore the out-of-date steps below for getting Chromium keys.

Instead, read this up-to-date guide (Jan 2023) written by @LearningToPi.

P.S. Thank you to every contributor below who provided tips over the years on what should be a straightforward process: setting up Chromium for local development.

Long live the web!

@BIGBALLON
BIGBALLON / llm-technical-reports-2026.md
Created April 21, 2026 09:40
LLM Technical Reports Landscape (2021–2026): 27 orgs × 70+ arXiv papers, with HuggingFace / GitHub / License / context / benchmarks. Open-weight + closed-API, fully cross-referenced.

主要大语言模型公司历代技术报告汇总(开源 + 闭源)


📖 术语说明

术语 定义
Open-weight(权重开源) 模型权重公开可下载、允许研究与商用,但训练数据 / 代码通常保留
Fully-open(完全开源) 除权重外,训练数据、训练代码、训练日志、中间检查点全部公开(典型代表:OLMo)

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@BollaBerg
BollaBerg / nmcli-connect-eduroam.sh
Last active September 3, 2026 12:57
Configure Eduroam for NMCLI
# Heavily inspired by https://haluk.github.io/posts-output/2020-10-19-linux/
# Replace <IFNAME> with wifi device name
# Replace <IDENTITY> with student identity (i.e. <USERNAME>@ntnu.no)
# Replace <PASSWORD> with user password
nmcli con add \
type wifi \
ifname <IFNAME> \
con-name eduroam \
ssid eduroam \

Office 2021

Method 1: Using my command line

Step 1.1: Open cmd program with administrator rights.

  • First, you need to open cmd in the admin mode, then run all commands below one by one.

Step 1.2: Get into the Office directory in cmd.

  • For x86 and x64
cd /d %ProgramFiles(x86)%\Microsoft Office\Office16
@lassekongo83
lassekongo83 / fedora-gnome-minimal.sh
Last active September 3, 2026 12:50
A script to install a minimal GNOME on a minimal Fedora Everything install
#!/bin/bash
# This is a script that will install a minimal GNOME on a minimal Fedora Everything install
# This script was made for Fedora 38
# 1. Get the Fedora Everything ISO: https://alt.fedoraproject.org/
# 2. When installing select "Minimal install" where you select software.
# Install curl to download and run this script trough that, or just copy paste the lines
# Let's make dnf a little bit faster first
@Mr-Precise
Mr-Precise / vs_buildtools_dl_list.md
Last active September 3, 2026 12:48
MSVC / VS / Buildtools download link collection list